home *** CD-ROM | disk | FTP | other *** search
/ Platinum Plus: Font Fascination / Font Fascination - Platinum Plus CD Explorer.ISO / _debug / 3.bat < prev    next >
Encoding:
DOS Batch File  |  1995-05-26  |  428 b   |  26 lines

  1. @echo off
  2. rem Kill ini file in c:\windows
  3.  
  4.  
  5.  
  6. rem check for dir
  7. if not exist c:\windows\nul goto nodir
  8.  
  9. rem check for file
  10. if not exist c:\windows\fontplus.ini goto nofile
  11.  
  12. Echo Deleting C:\WINDOWS\FONTPLUS.INI ...
  13. del c:\windows\fontplus.ini
  14. Echo Success!
  15.  
  16. goto exit
  17.  
  18. :nodir
  19. Echo The Directory: C:\WINDOWS does not exist.
  20. goto exit
  21.  
  22. :noFile
  23. Echo The file: C:\WINDOWS\FONTPLUS.INI does not exist.
  24.  
  25. :exit
  26.